github.com/klauspost/compress/zstd.sequenceDecs.dict (field)
22 uses
github.com/klauspost/compress/zstd (current package)
history.go#L65: h.decoders.dict = dict.content
seqdec.go#L68: dict []byte
seqdec.go#L95: s.dict = nil
seqdec.go#L97: s.dict = hist.dict.content
seqdec.go#L120: if len(s.dict) == 0 {
seqdec.go#L132: printf("Execute %d seqs with hist %d, dict %d, literals: %d into %d bytes\n", len(seqs), len(hist), len(s.dict), len(s.literals), s.seqSize)
seqdec.go#L146: if len(s.dict) == 0 {
seqdec.go#L151: dictO := len(s.dict) - (seq.mo - (t + len(hist)))
seqdec.go#L152: if dictO < 0 || dictO >= len(s.dict) {
seqdec.go#L153: return fmt.Errorf("match offset (%d) bigger than current history+dict (%d)", seq.mo, t+len(hist)+len(s.dict))
seqdec.go#L156: if end > len(s.dict) {
seqdec.go#L157: n := len(s.dict) - dictO
seqdec.go#L158: copy(out[t:], s.dict[dictO:])
seqdec.go#L162: copy(out[t:], s.dict[dictO:end])
seqdec.go#L346: if len(s.dict) == 0 {
seqdec.go#L351: dictO := len(s.dict) - (mo - (len(out) + len(hist)))
seqdec.go#L352: if dictO < 0 || dictO >= len(s.dict) {
seqdec.go#L356: if end > len(s.dict) {
seqdec.go#L357: out = append(out, s.dict[dictO:]...)
seqdec.go#L358: ml -= len(s.dict) - dictO
seqdec.go#L360: out = append(out, s.dict[dictO:end]...)
seqdec_amd64.go#L56: if len(s.dict) > 0 {
 |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |